From: Paul Eggert Date: Sun, 17 Apr 2016 02:49:15 +0000 (-0700) Subject: Tweak configure.ac syntax in recent module patch X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~23^2~403 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b6d2552;p=emacs.git Tweak configure.ac syntax in recent module patch * configure.ac: Use proper Autoconf parenthesization in recent HAVE_MODULES patch. Although this doesn’t fix any bugs, the previous syntax was confusing. --- diff --git a/configure.ac b/configure.ac index 89bc0c5638f..7184d68790a 100644 --- a/configure.ac +++ b/configure.ac @@ -3351,9 +3351,10 @@ if test "${with_modules}" != "no"; then HAVE_MODULES=yes ;; *) - # BSD system have dlopen in the libc - AC_CHECK_FUNC(dlopen, [MODULES_SUFFIX=".so"] - [HAVE_MODULES=yes], []) + # BSD systems have dlopen in libc. + AC_CHECK_FUNC([dlopen], + [MODULES_SUFFIX=".so" + HAVE_MODULES=yes]) ;; esac